home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / programming / c / stormamiga_lib-v45_00d / stormc_v3-examples / standard / hello_world_c++ / hello_world_c++.c < prev   
C/C++ Source or Header  |  2000-02-28  |  507b  |  18 lines

  1. /********************************************
  2. **                                         **
  3. **             Hello_World_C++             **
  4. **                                         **
  5. **  Copyright 1996/98 by CyberdyneSystems  **
  6. **                                         **
  7. **        written by Matthias Henze        **
  8. **                                         **
  9. ***************** 11/07/97 *****************/
  10.  
  11. #include <iostream.h>
  12.  
  13. int main (void)
  14. {
  15.   cout << "Hello World!" << endl;
  16.   return NULL;
  17. }
  18.